home *** CD-ROM | disk | FTP | other *** search
/ WWW Studio 2004 / WWW Studio.iso / Serwisy / at40 / dane / attach / gra02.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2004-04-01  |  280 b   |  14 lines

  1. stop();
  2. Stage.showMenu = false;
  3. this.onEnterFrame = function()
  4. {
  5.    sofar = this.getBytesLoaded();
  6.    total = this.getBytesTotal();
  7.    pc_txt.text = int(sofar / total * 100) + "%";
  8.    if(sofar == total)
  9.    {
  10.       delete this.onEnterFrame;
  11.       nextFrame();
  12.    }
  13. };
  14.